home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / gcc / gcc2.7.0 / gcc270cp.lha / gnu / lib / g++-include / std / complex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  453 b   |  22 lines

  1. // Main header for the -*- C++ -*- complex number classes.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __COMPLEX__
  5. #define __COMPLEX__
  6.  
  7. #include <std/complext.h>
  8.  
  9. #define __STD_COMPLEX
  10.  
  11. // ANSI complex types
  12. typedef complex<float> float_complex;
  13. typedef complex<double> double_complex;
  14. typedef complex<long double> long_double_complex;
  15.  
  16. // For backward compatibility
  17. #ifndef __STRICT_ANSI__
  18. typedef double_complex Complex;
  19. #endif
  20.  
  21. #endif
  22.